<?xml version="1.0" encoding="windows-1250"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output method="html" indent="yes"/>

 <xsl:template match="/">
  <HTML>
   <BODY>
   <B STYLE="color:navy">ABECEDA :
    <xsl:apply-templates/>
   </B>
   </BODY>
  </HTML>
 </xsl:template>

 <xsl:template match="abeceda/*">
  <xsl:value-of select="."/>
 </xsl:template>

 <xsl:include href="inc.xsl"/>
</xsl:stylesheet>

 inc.xsl

<?xml version="1.0" encoding="windows-1250"?>
<xsl:stylesheet version="1.0"  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

 <xsl:template match="abeceda/a">
  <xsl:element name="SPAN">
   <xsl:attribute name="STYLE">color:red</xsl:attribute>
    První písmeno : <xsl:value-of select="."/><BR/>
  </xsl:element>
 </xsl:template>

</xsl:stylesheet>